home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000174_news@columbia.edu _Sat Oct 9 12:54:53 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA05259
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 9 Oct 1999 12:54:53 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA05434
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 9 Oct 1999 12:54:08 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: login prompt problem
  11. Date: 9 Oct 1999 16:54:07 GMT
  12. Organization: Columbia University
  13. Message-ID: <7tnrvf$59n$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <7tlv28$crs$1@nnrp1.deja.com>,  <a_ppi_s@my-deja.com> wrote:
  17. : Whats the difference between the two?
  18. : I'm trying to write a simple script that will login to
  19. : a unix machine by dialing in using kermit:
  20. : (OS used Linux C-Kermit 7.0.195 )
  21. : the login prompts are as follows:
  22. : when I dial in using this script below,
  23. : I am able to login manually without a problem (after commenting out the
  24. : input/ output lines)
  25. : But, when attempting to login automatically with the script below, I am
  26. : not able to anticipate the correct login sequence.
  27. : OK, here is a sample of a correct login session ( done manually )
  28. : ~~~~~~~~~~~~~~~~~~~~
  29. :  0068HWR
  30. : Host Name:  aAnNdDyY
  31. : UIC: pPaAsSsSwWoOrRdD
  32. : Connected to 0138 CDD-RTT1
  33. : ^L
  34. : ~~~~~~~~~~~~~~~~~
  35. : #!/home/andy/kermit/wermit +
  36. : set line /dev/modem
  37. : set carrier-watch off
  38. : set speed 9600
  39. : set flow-control rts/cts
  40. : set stop-bits 1
  41. : set parity even
  42. : set command bytesize 7
  43. : set duplex half
  44. : set terminal echo local
  45. : set terminal cr-display normal
  46. : set session log text
  47. : log session
  48. : set modem type gen
  49. : set input echo on
  50. : set input timeout proceed
  51. : dial 9,5551212
  52. : output \13
  53. : pau 3
  54. : ;input 5 ame:
  55. : ;output Andy\13
  56. : ;input 5 UIC:
  57. : ;output password\13
  58. : ~~~~~~~~~~~~~~~
  59. : Now, when I uncomment the lines above, It is not able to sense
  60. : the correct login prompts,
  61. : Obviously I'm missing something here. Any ideas?
  62. I suspect that sometimes you might have to send more than one carriage
  63. to get the prompt.  Try it this way:
  64.  
  65. set input echo on                ; So you can watch what happens
  66. dial 9,5551212                   ; Dial the number
  67. if fail exit 1 Call failed       ; Make sure the call was completed
  68. for \%i 1 5 1 {                  ; Try 5 times to get a prompt
  69.     output \13                   ; Send CR
  70.     input 5 ame:                 ; Wait 5 sec for prompt
  71.     if fail continue             ; If it doesn't come try again
  72.     output Andy\13               ; Send name + CR
  73.     input 10 UIC:                ; Wait for next prompt
  74.     if fail exit 1 No UIC prompt ; Make sure it comes
  75.     output password\13           ; Send password + CR
  76. }
  77.  
  78. : Also,
  79. : How do is send the following characters:
  80. : 1.) CNTRL + S
  81. :
  82. If this is for flow control purposes, your script shouldn't send it -- the
  83. underlying terminal driver should.  But you are using rts/cts, so I guess
  84. it's not for flow control?  (What's it for?)  In any case:
  85.  
  86.   output \19
  87.  
  88. : 2.) CNTRL + J ( or line feed )
  89.  
  90.   output \10
  91.  
  92. - Frank